home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / AIncludes / DeviceManagerSupport.a < prev    next >
Text File  |  1996-05-01  |  2KB  |  57 lines

  1. ;
  2. ;    File:        DeviceManagerSupport.a
  3. ;
  4. ;    Contains:    Device Manager Interfaces.
  5. ;
  6. ;    Version:    Technology:    Sustem 7.5 and 8
  7. ;                Release:    Universal Interfaces 3.0d3 on Copland DR1
  8. ;
  9. ;    Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10. ;
  11. ;    Bugs?:        If you find a problem with this file, send the file and version
  12. ;                information (from above) and the problem description to:
  13. ;
  14. ;                    Internet:    apple.bugs@applelink.apple.com
  15. ;                    AppleLink:    APPLE.BUGS
  16. ;
  17. ;
  18.     IF &TYPE('__DEVICEMANAGERSUPPORT__') = 'UNDEFINED' THEN
  19. __DEVICEMANAGERSUPPORT__ SET 1
  20.  
  21.     IF &TYPE('__CONDITIONALMACROS__') = 'UNDEFINED' THEN
  22.     include 'ConditionalMacros.a'
  23.     ENDIF
  24.     IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
  25.     include 'Types.a'
  26.     ENDIF
  27.     IF &TYPE('__DEVICES__') = 'UNDEFINED' THEN
  28.     include 'Devices.a'
  29.     ENDIF
  30.     IF &TYPE('__CODEFRAGMENTS__') = 'UNDEFINED' THEN
  31.     include 'CodeFragments.a'
  32.     ENDIF
  33. ;  callback function to family from IOCommandIsComplete
  34. ;
  35. ; extern OSErr RegisterDoDriverIO(IOCommandID *theID, ParmBlkPtr thePB, IOCompleteEntryPointPtr returnAddr)
  36. ;
  37.     IF GENERATINGCFM THEN
  38.         IMPORT_CFM_FUNCTION RegisterDoDriverIO
  39.     ENDIF
  40.  
  41. ;
  42. ; extern OSErr IOCommandIsComplete(IOCommandID theID, OSErr theResult)
  43. ;
  44.     IF GENERATINGCFM THEN
  45.         IMPORT_CFM_FUNCTION IOCommandIsComplete
  46.     ENDIF
  47.  
  48. ;
  49. ; extern OSErr GetIOCommandInfo(IOCommandID theID, IOCommandContents *theContents, IOCommandCode *theCommand, IOCommandKind *theKind)
  50. ;
  51.     IF GENERATINGCFM THEN
  52.         IMPORT_CFM_FUNCTION GetIOCommandInfo
  53.     ENDIF
  54.  
  55.     ENDIF ; __DEVICEMANAGERSUPPORT__ 
  56.  
  57.